interface CfnDirectConnectGatewayAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DirectConnect.Mixins.CfnDirectConnectGatewayAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdirectconnect/mixins#CfnDirectConnectGatewayAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.directconnect.mixins.CfnDirectConnectGatewayAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_directconnect.mixins.CfnDirectConnectGatewayAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_directconnect » mixins » 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 { mixins as directconnect_mixins } from '@aws-cdk/mixins-preview/aws-directconnect';
const cfnDirectConnectGatewayAssociationMixinProps: directconnect_mixins.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 | |
| direct | string |
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
(optional)
directConnectGatewayId?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript