interface CfnRouteServerAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnRouteServerAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnRouteServerAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnRouteServerAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnRouteServerAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnRouteServerAssociationMixinProps |
Properties for CfnRouteServerAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnRouteServerAssociationMixinProps: ec2_mixins.CfnRouteServerAssociationMixinProps = {
routeServerId: 'routeServerId',
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| route | string | The ID of the associated route server. |
| vpc | string | The ID of the associated VPC. |
routeServerId?
Type:
string
(optional)
The ID of the associated route server.
vpcId?
Type:
string
(optional)
The ID of the associated VPC.

.NET
Go
Java
Python
TypeScript