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¶
| associationId | The ID of the Direct Connect gateway association. | 
| addAllowedPrefixesToDirectConnectGateway | The Amazon VPC prefixes to advertise to the Direct Connect gateway. | 
| removeAllowedPrefixesToDirectConnectGateway | The 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"
      )
    ),
    associatedCoreNetwork = list(
      id = "string",
      ownerAccount = "string",
      attachmentId = "string"
    ),
    virtualGatewayId = "string",
    virtualGatewayRegion = "string",
    virtualGatewayOwnerAccount = "string"
  )
)
Request syntax¶
svc$update_direct_connect_gateway_association(
  associationId = "string",
  addAllowedPrefixesToDirectConnectGateway = list(
    list(
      cidr = "string"
    )
  ),
  removeAllowedPrefixesToDirectConnectGateway = list(
    list(
      cidr = "string"
    )
  )
)