Delete Transit Gateway
ec2_delete_transit_gateway | R Documentation |
Deletes the specified transit gateway¶
Description¶
Deletes the specified transit gateway.
Usage¶
Arguments¶
TransitGatewayId
[required] The ID of the transit gateway.
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
DryRunOperation
. Otherwise, it isUnauthorizedOperation
.
Value¶
A list with the following syntax:
list(
TransitGateway = list(
TransitGatewayId = "string",
TransitGatewayArn = "string",
State = "pending"|"available"|"modifying"|"deleting"|"deleted",
OwnerId = "string",
Description = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
Options = list(
AmazonSideAsn = 123,
TransitGatewayCidrBlocks = list(
"string"
),
AutoAcceptSharedAttachments = "enable"|"disable",
DefaultRouteTableAssociation = "enable"|"disable",
AssociationDefaultRouteTableId = "string",
DefaultRouteTablePropagation = "enable"|"disable",
PropagationDefaultRouteTableId = "string",
VpnEcmpSupport = "enable"|"disable",
DnsSupport = "enable"|"disable",
SecurityGroupReferencingSupport = "enable"|"disable",
MulticastSupport = "enable"|"disable"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
)