interface CfnRouteServerEndpointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnRouteServerEndpointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnRouteServerEndpointMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnRouteServerEndpointMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnRouteServerEndpointMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnRouteServerEndpointMixinProps |
Properties for CfnRouteServerEndpointPropsMixin.
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 cfnRouteServerEndpointMixinProps: ec2_mixins.CfnRouteServerEndpointMixinProps = {
routeServerId: 'routeServerId',
subnetId: 'subnetId',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| route | string | The ID of the route server associated with this endpoint. |
| subnet | string | The ID of the subnet to place the route server endpoint into. |
| tags? | Cfn[] | Any tags assigned to the route server endpoint. |
routeServerId?
Type:
string
(optional)
The ID of the route server associated with this endpoint.
subnetId?
Type:
string
(optional)
The ID of the subnet to place the route server endpoint into.
tags?
Type:
Cfn[]
(optional)
Any tags assigned to the route server endpoint.

.NET
Go
Java
Python
TypeScript