Get Transit Gateway Route Table Associations
| ec2_get_transit_gateway_route_table_associations | R Documentation |
Gets information about the associations for the specified transit gateway route table¶
Description¶
Gets information about the associations for the specified transit gateway route table.
Usage¶
ec2_get_transit_gateway_route_table_associations(
TransitGatewayRouteTableId, Filters, MaxResults, NextToken, DryRun)
Arguments¶
TransitGatewayRouteTableId[required] The ID of the transit gateway route table.
FiltersOne or more filters. The possible values are:
resource-id- The ID of the resource.resource-type- The resource type. Valid values arevpc|vpn|direct-connect-gateway|peering|connect.transit-gateway-attachment-id- The ID of the attachment.
MaxResultsThe maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned
nextTokenvalue.NextTokenThe token for the next page of results.
DryRunChecks 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 isUnauthorizedOperation.
Value¶
A list with the following syntax:
list(
Associations = list(
list(
TransitGatewayAttachmentId = "string",
ResourceId = "string",
ResourceType = "vpc"|"vpn"|"direct-connect-gateway"|"connect"|"peering"|"tgw-peering",
State = "associating"|"associated"|"disassociating"|"disassociated"
)
),
NextToken = "string"
)