Update Direct Connect Gateway Association
| directconnect_update_direct_connect_gateway_association | R Documentation |
Updates the specified attributes of the Direct Connect gateway association¶
Description¶
Updates the specified attributes of the Direct Connect gateway association.
Add or remove prefixes from the association.
Usage¶
directconnect_update_direct_connect_gateway_association(associationId,
addAllowedPrefixesToDirectConnectGateway,
removeAllowedPrefixesToDirectConnectGateway)
Arguments¶
associationIdThe ID of the Direct Connect gateway association.
addAllowedPrefixesToDirectConnectGatewayThe Amazon VPC prefixes to advertise to the Direct Connect gateway.
removeAllowedPrefixesToDirectConnectGatewayThe Amazon VPC prefixes to no longer advertise to the Direct Connect gateway.
Value¶
A list with the following syntax:
list(
directConnectGatewayAssociation = list(
directConnectGatewayId = "string",
directConnectGatewayOwnerAccount = "string",
associationState = "associating"|"associated"|"disassociating"|"disassociated"|"updating",
stateChangeError = "string",
associatedGateway = list(
id = "string",
type = "virtualPrivateGateway"|"transitGateway",
ownerAccount = "string",
region = "string"
),
associationId = "string",
allowedPrefixesToDirectConnectGateway = list(
list(
cidr = "string"
)
),
virtualGatewayId = "string",
virtualGatewayRegion = "string",
virtualGatewayOwnerAccount = "string"
)
)