interface CfnRouteServerEndpointMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnRouteServerEndpointMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnRouteServerEndpointMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnRouteServerEndpointMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnRouteServerEndpointMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnRouteServerEndpointMixinProps: ec2.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