Skip to main content

transit_gateway_peering_attachments

Creates, updates, deletes or gets a transit_gateway_peering_attachment resource or lists transit_gateway_peering_attachments in a region

Overview

Nametransit_gateway_peering_attachments
TypeResource
DescriptionThe AWS::EC2::TransitGatewayPeeringAttachment type
Idaws.ec2.transit_gateway_peering_attachments

Fields

NameDatatypeDescription
statusobjectThe status of the transit gateway peering attachment.
transit_gateway_idstringThe ID of the transit gateway.
peer_transit_gateway_idstringThe ID of the peer transit gateway.
peer_account_idstringThe ID of the peer account
statestringThe state of the transit gateway peering attachment. Note that the initiating state has been deprecated.
creation_timestringThe time the transit gateway peering attachment was created.
peer_regionstringPeer Region
tagsarrayThe tags for the transit gateway peering attachment.
transit_gateway_attachment_idstringThe ID of the transit gateway peering attachment.
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTTransitGatewayId, PeerTransitGatewayId, PeerAccountId, PeerRegion, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all transit_gateway_peering_attachments in a region.

SELECT
region,
status,
transit_gateway_id,
peer_transit_gateway_id,
peer_account_id,
state,
creation_time,
peer_region,
tags,
transit_gateway_attachment_id
FROM aws.ec2.transit_gateway_peering_attachments
WHERE region = 'us-east-1';

Gets all properties from an individual transit_gateway_peering_attachment.

SELECT
region,
status,
transit_gateway_id,
peer_transit_gateway_id,
peer_account_id,
state,
creation_time,
peer_region,
tags,
transit_gateway_attachment_id
FROM aws.ec2.transit_gateway_peering_attachments
WHERE region = 'us-east-1' AND data__Identifier = '<TransitGatewayAttachmentId>';

INSERT example

Use the following StackQL query and manifest file to create a new transit_gateway_peering_attachment resource, using stack-deploy.

/*+ create */
INSERT INTO aws.ec2.transit_gateway_peering_attachments (
TransitGatewayId,
PeerTransitGatewayId,
PeerAccountId,
PeerRegion,
region
)
SELECT
'{{ TransitGatewayId }}',
'{{ PeerTransitGatewayId }}',
'{{ PeerAccountId }}',
'{{ PeerRegion }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM aws.ec2.transit_gateway_peering_attachments
WHERE data__Identifier = '<TransitGatewayAttachmentId>'
AND region = 'us-east-1';

Permissions

To operate on the transit_gateway_peering_attachments resource, the following permissions are required:

Read

ec2:DescribeTransitGatewayPeeringAttachments

Create

ec2:CreateTransitGatewayPeeringAttachment,
ec2:DescribeTransitGatewayPeeringAttachments

Update

ec2:DescribeTransitGatewayPeeringAttachments

List

ec2:DescribeTransitGatewayPeeringAttachments

Delete

ec2:DeleteTransitGatewayPeeringAttachment,
ec2:DescribeTransitGatewayPeeringAttachments