transit_gateway_attachment_propagations
Creates, updates, deletes, gets or lists a transit_gateway_attachment_propagations resource.
Overview
| Name | transit_gateway_attachment_propagations |
| Type | Resource |
| Id | aws.ec2.transit_gateway_attachment_propagations |
Fields
The following fields are returned by SELECT queries:
- get_transit_gateway_attachment_propagations
| Name | Datatype | Description |
|---|---|---|
state | string | The state of the propagation route table. |
transit_gateway_route_table_id | string | The ID of the propagation route table. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_transit_gateway_attachment_propagations | select | TransitGatewayAttachmentId, region | Filter, MaxResults, NextToken, DryRun | Lists 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.
| Name | Datatype | Description |
|---|---|---|
TransitGatewayAttachmentId | string | The ID of the attachment. |
region | string | AWS region (default: us-east-1) |
DryRun | boolean | Checks 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. |
Filter | array | One or more filters. The possible values are: transit-gateway-route-table-id - The ID of the transit gateway route table. |
MaxResults | integer | The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. |
NextToken | string | The token for the next page of results. |
SELECT examples
- get_transit_gateway_attachment_propagations
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 }}'
;