Skip to main content

network_migration_deployed_stacks

Creates, updates, deletes, gets or lists a network_migration_deployed_stacks resource.

Overview

Namenetwork_migration_deployed_stacks
TypeResource
Idaws.mgn.network_migration_deployed_stacks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
failed_resourcesarrayA list of resources that failed to deploy.
segment_idstringThe ID of the segment that this stack was deployed for. (pattern: <code>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}</code>)
stack_logical_idstringThe logical ID of the stack. (pattern: <code>[a-zA-Z][a-zA-Z0-9-]*</code>)
stack_physical_idstringThe physical ID of the CloudFormation stack. (pattern: <code>arn:aws:cloudformation:[a-z0-9-]+:[0-9]{12}:stack/[a-zA-Z0-9-]+/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>)
statusstringThe current status of the deployed stack. (CREATE_COMPLETE, CREATE_FAILED, CREATE_STARTED, DELETE_COMPLETE, DELETE_FAILED, DELETE_STARTED)
target_accountstringThe target AWS account where the stack was deployed. (pattern: <code>.[0-9]{12,}.</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_network_migration_deployed_stacksselectregionLists CloudFormation stacks that have been deployed as part of the network migration.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Lists CloudFormation stacks that have been deployed as part of the network migration.

SELECT
failed_resources,
segment_id,
stack_logical_id,
stack_physical_id,
status,
target_account
FROM aws.mgn.network_migration_deployed_stacks
WHERE region = '{{ region }}' -- required
;