Show / Hide Table of Contents

Interface ICfnRouteServerEndpointProps

Properties for defining a CfnRouteServerEndpoint.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnRouteServerEndpointProps
Syntax (vb)
Public Interface ICfnRouteServerEndpointProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverendpoint.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.EC2;

             var cfnRouteServerEndpointProps = new CfnRouteServerEndpointProps {
                 RouteServerId = "routeServerId",
                 SubnetId = "subnetId",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

RouteServerId

The ID of the route server associated with this endpoint.

SubnetId

The ID of the subnet to place the route server endpoint into.

Tags

Any tags assigned to the route server endpoint.

Properties

RouteServerId

The ID of the route server associated with this endpoint.

string RouteServerId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverendpoint.html#cfn-ec2-routeserverendpoint-routeserverid

SubnetId

The ID of the subnet to place the route server endpoint into.

string SubnetId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverendpoint.html#cfn-ec2-routeserverendpoint-subnetid

Tags

Any tags assigned to the route server endpoint.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverendpoint.html#cfn-ec2-routeserverendpoint-tags

Back to top Generated by DocFX