Skip to main content

network_migration_mapper_segment_constructs

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

Overview

Namenetwork_migration_mapper_segment_constructs
TypeResource
Idaws.mgn.network_migration_mapper_segment_constructs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the construct. (pattern: <code>[^\s\x00]( [^\s\x00])</code>)
construct_idstringThe unique identifier of the construct. (pattern: <code>[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}</code>)
construct_typestringThe type of the construct, such as VPC, subnet, security group, or route table. (pattern: <code>AWS::([A-Z\d]){2,10}::[a-zA-Z\d]{2,30}</code>)
created_atstring (date-time)The timestamp when the construct was created.
descriptionstringA description of the construct. (pattern: <code>[^\x00]*</code>)
excludedbooleanWhether this construct is excluded from the migration.
logical_idstringThe logical identifier for the construct in the infrastructure code. (pattern: <code>[a-zA-Z][a-zA-Z0-9-]*</code>)
properties_objectThe properties and configuration of the construct.
updated_atstring (date-time)The timestamp when the construct was last updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_network_migration_mapper_segment_constructselectregionRetrieves detailed information about a specific construct within a mapper segment, including its properties and configuration data.
list_network_migration_mapper_segment_constructsselectregionLists constructs within a mapper segment, representing individual infrastructure components like VPCs, subnets, or security groups.

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

Retrieves detailed information about a specific construct within a mapper segment, including its properties and configuration data.

SELECT
name,
construct_id,
construct_type,
created_at,
description,
excluded,
logical_id,
properties_,
updated_at
FROM aws.mgn.network_migration_mapper_segment_constructs
WHERE region = '{{ region }}' -- required
;