Skip to main content

transit_gateway_attachment_propagations

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

Overview

Nametransit_gateway_attachment_propagations
TypeResource
Idaws.ec2.transit_gateway_attachment_propagations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
statestringThe state of the propagation route table.
transit_gateway_route_table_idstringThe ID of the propagation route table.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_transit_gateway_attachment_propagationsselectTransitGatewayAttachmentId, regionFilter, MaxResults, NextToken, DryRunLists the route tables to which the specified resource attachment propagates routes.

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
TransitGatewayAttachmentIdstringThe ID of the attachment.
regionstringAWS region (default: us-east-1)
DryRunbooleanChecks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
FilterarrayOne or more filters. The possible values are: transit-gateway-route-table-id - The ID of the transit gateway route table.
MaxResultsintegerThe maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
NextTokenstringThe token for the next page of results.

SELECT examples

Lists the route tables to which the specified resource attachment propagates routes.

SELECT
state,
transit_gateway_route_table_id
FROM aws.ec2.transit_gateway_attachment_propagations
WHERE TransitGatewayAttachmentId = '{{ TransitGatewayAttachmentId }}' -- required
AND region = '{{ region }}' -- required
AND Filter = '{{ Filter }}'
AND MaxResults = '{{ MaxResults }}'
AND NextToken = '{{ NextToken }}'
AND DryRun = '{{ DryRun }}'
;