interface CfnDirectConnectGatewayAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DirectConnect.CfnDirectConnectGatewayAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdirectconnect#CfnDirectConnectGatewayAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.directconnect.CfnDirectConnectGatewayAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_directconnect.CfnDirectConnectGatewayAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_directconnect » CfnDirectConnectGatewayAssociationMixinProps |
Properties for CfnDirectConnectGatewayAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_directconnect as directconnect } from '@aws-cdk/cfn-property-mixins';
const cfnDirectConnectGatewayAssociationMixinProps: directconnect.CfnDirectConnectGatewayAssociationMixinProps = {
acceptDirectConnectGatewayAssociationProposalRoleArn: 'acceptDirectConnectGatewayAssociationProposalRoleArn',
allowedPrefixesToDirectConnectGateway: ['allowedPrefixesToDirectConnectGateway'],
associatedGatewayId: 'associatedGatewayId',
directConnectGatewayId: 'directConnectGatewayId',
};
Properties
| Name | Type | Description |
|---|---|---|
| accept | string | The Amazon Resource Name (ARN) of the role to accept the Direct Connect Gateway association proposal. |
| allowed | string[] | The Amazon VPC prefixes to advertise to the Direct Connect gateway. |
| associated | string | ITransit | IVPNGateway | |
| direct | string | IDirect |
acceptDirectConnectGatewayAssociationProposalRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the role to accept the Direct Connect Gateway association proposal.
Needs directconnect:AcceptDirectConnectGatewayAssociationProposal permissions.
allowedPrefixesToDirectConnectGateway?
Type:
string[]
(optional)
The Amazon VPC prefixes to advertise to the Direct Connect gateway.
This parameter is required when you create an association to a transit gateway.
associatedGatewayId?
Type:
string | ITransit | IVPNGateway
(optional)
directConnectGatewayId?
Type:
string | IDirect
(optional)

.NET
Go
Java
Python
TypeScript