transit_gateway_route_table_attachments
Creates, updates, deletes or gets a transit_gateway_route_table_attachment
resource or lists transit_gateway_route_table_attachments
in a region
Overview
Name | transit_gateway_route_table_attachments |
Type | Resource |
Description | AWS::NetworkManager::TransitGatewayRouteTableAttachment Resource Type definition. |
Id | aws.networkmanager.transit_gateway_route_table_attachments |
Fields
Name | Datatype | Description |
---|---|---|
peering_id | string | The Id of peering between transit gateway and core network. |
transit_gateway_route_table_arn | string | The Arn of transit gateway route table. |
core_network_id | string | The ID of a core network where you're creating a site-to-site VPN attachment. |
core_network_arn | string | The ARN of a core network for the VPC attachment. |
attachment_id | string | The ID of the attachment. |
owner_account_id | string | Owner account of the attachment. |
attachment_type | string | The type of attachment. |
state | string | The state of the attachment. |
edge_location | string | The Region where the edge is located. |
resource_arn | string | The ARN of the Resource. |
attachment_policy_rule_number | integer | The policy rule number associated with the attachment. |
segment_name | string | The name of the segment that attachment is in. |
proposed_segment_change | object | The attachment to move from one segment to another. |
created_at | string | Creation time of the attachment. |
updated_at | string | Last update time of the attachment. |
tags | array | An array of key-value pairs to apply to this resource. |
region | string | AWS region. |
Methods
Name | Accessible by | Required Params |
---|---|---|
create_resource | INSERT | PeeringId, TransitGatewayRouteTableArn, region |
delete_resource | DELETE | data__Identifier, region |
update_resource | UPDATE | data__Identifier, data__PatchDocument, region |
list_resources | SELECT | region |
get_resource | SELECT | data__Identifier, region |
SELECT
examples
Gets all transit_gateway_route_table_attachments
in a region.
SELECT
region,
peering_id,
transit_gateway_route_table_arn,
core_network_id,
core_network_arn,
attachment_id,
owner_account_id,
attachment_type,
state,
edge_location,
resource_arn,
attachment_policy_rule_number,
segment_name,
proposed_segment_change,
created_at,
updated_at,
tags
FROM aws.networkmanager.transit_gateway_route_table_attachments
WHERE region = 'us-east-1';
Gets all properties from an individual transit_gateway_route_table_attachment
.
SELECT
region,
peering_id,
transit_gateway_route_table_arn,
core_network_id,
core_network_arn,
attachment_id,
owner_account_id,
attachment_type,
state,
edge_location,
resource_arn,
attachment_policy_rule_number,
segment_name,
proposed_segment_change,
created_at,
updated_at,
tags
FROM aws.networkmanager.transit_gateway_route_table_attachments
WHERE region = 'us-east-1' AND data__Identifier = '<AttachmentId>';
INSERT
example
Use the following StackQL query and manifest file to create a new transit_gateway_route_table_attachment
resource, using stack-deploy
.
- Required Properties
- All Properties
- Manifest
/*+ create */
INSERT INTO aws.networkmanager.transit_gateway_route_table_attachments (
PeeringId,
TransitGatewayRouteTableArn,
region
)
SELECT
'{{ PeeringId }}',
'{{ TransitGatewayRouteTableArn }}',
'{{ region }}';
/*+ create */
INSERT INTO aws.networkmanager.transit_gateway_route_table_attachments (
PeeringId,
TransitGatewayRouteTableArn,
ProposedSegmentChange,
Tags,
region
)
SELECT
'{{ PeeringId }}',
'{{ TransitGatewayRouteTableArn }}',
'{{ ProposedSegmentChange }}',
'{{ Tags }}',
'{{ region }}';
version: 1
name: stack name
description: stack description
providers:
- aws
globals:
- name: region
value: '{{ vars.AWS_REGION }}'
resources:
- name: transit_gateway_route_table_attachment
props:
- name: PeeringId
value: '{{ PeeringId }}'
- name: TransitGatewayRouteTableArn
value: '{{ TransitGatewayRouteTableArn }}'
- name: ProposedSegmentChange
value:
Tags:
- Key: '{{ Key }}'
Value: '{{ Value }}'
AttachmentPolicyRuleNumber: '{{ AttachmentPolicyRuleNumber }}'
SegmentName: '{{ SegmentName }}'
- name: Tags
value:
- null
DELETE
example
/*+ delete */
DELETE FROM aws.networkmanager.transit_gateway_route_table_attachments
WHERE data__Identifier = '<AttachmentId>'
AND region = 'us-east-1';
Permissions
To operate on the transit_gateway_route_table_attachments
resource, the following permissions are required:
Create
networkmanager:CreateTransitGatewayRouteTableAttachment,
networkmanager:GetTransitGatewayRouteTableAttachment,
networkmanager:TagResource,
iam:CreateServiceLinkedRole,
ec2:DescribeRegions
Read
networkmanager:GetTransitGatewayRouteTableAttachment
Update
networkmanager:GetTransitGatewayRouteTableAttachment,
networkmanager:ListTagsForResource,
networkmanager:TagResource,
networkmanager:UntagResource,
ec2:DescribeRegions
Delete
networkmanager:GetTransitGatewayRouteTableAttachment,
networkmanager:DeleteAttachment,
ec2:DescribeRegions
List
networkmanager:ListAttachments