MCPcopy Index your code
hub / github.com/aws/aws-cli / execute_changeset

Method execute_changeset

awscli/customizations/cloudformation/deployer.py:213–228  ·  view source on GitHub ↗

Calls CloudFormation to execute changeset :param changeset_id: ID of the changeset :param stack_name: Name or ID of the stack :param disable_rollback: Disable rollback of all resource changes :return: Response from execute-change-set call

(
        self, changeset_id, stack_name, disable_rollback=False
    )

Source from the content-addressed store, hash-verified

211 )
212
213 def execute_changeset(
214 self, changeset_id, stack_name, disable_rollback=False
215 ):
216 """
217 Calls CloudFormation to execute changeset
218
219 :param changeset_id: ID of the changeset
220 :param stack_name: Name or ID of the stack
221 :param disable_rollback: Disable rollback of all resource changes
222 :return: Response from execute-change-set call
223 """
224 return self._client.execute_change_set(
225 ChangeSetName=changeset_id,
226 StackName=stack_name,
227 DisableRollback=disable_rollback,
228 )
229
230 def wait_for_execute(self, stack_name, changeset_type):
231 sys.stdout.write("Waiting for stack create/update to complete\n")

Calls

no outgoing calls