Export Transit Gateway Routes
ec2_export_transit_gateway_routes | R Documentation |
Exports routes from the specified transit gateway route table to the specified S3 bucket¶
Description¶
Exports routes from the specified transit gateway route table to the specified S3 bucket. By default, all routes are exported. Alternatively, you can filter by CIDR range.
The routes are saved to the specified bucket in a JSON file. For more information, see Export route tables to Amazon S3 in the Amazon Web Services Transit Gateways Guide.
Usage¶
ec2_export_transit_gateway_routes(TransitGatewayRouteTableId, Filters,
S3Bucket, DryRun)
Arguments¶
TransitGatewayRouteTableId |
[required] The ID of the route table. |
Filters |
One or more filters. The possible values are:
|
S3Bucket |
[required] The name of the S3 bucket. |
DryRun |
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
|
Value¶
A list with the following syntax:
list(
S3Location = "string"
)
Request syntax¶
svc$export_transit_gateway_routes(
TransitGatewayRouteTableId = "string",
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
S3Bucket = "string",
DryRun = TRUE|FALSE
)