Show / Hide Table of Contents

Interface ICfnRouteServerPeerProps

Properties for defining a CfnRouteServerPeer.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-routeserverpeer.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 cfnRouteServerPeerProps = new CfnRouteServerPeerProps {
                 BgpOptions = new BgpOptionsProperty {
                     PeerAsn = 123,
                     PeerLivenessDetection = "peerLivenessDetection"
                 },
                 PeerAddress = "peerAddress",
                 RouteServerEndpointId = "routeServerEndpointId",

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

Synopsis

Properties

BgpOptions

The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.

PeerAddress

The IPv4 address of the peer device.

RouteServerEndpointId

The ID of the route server endpoint associated with this peer.

Tags

Any tags assigned to the route server peer.

Properties

BgpOptions

The BGP configuration options for this peer, including ASN (Autonomous System Number) and BFD (Bidrectional Forwarding Detection) settings.

object BgpOptions { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnRouteServerPeer.IBgpOptionsProperty

PeerAddress

The IPv4 address of the peer device.

string PeerAddress { get; }
Property Value

string

Remarks

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

RouteServerEndpointId

The ID of the route server endpoint associated with this peer.

string RouteServerEndpointId { get; }
Property Value

string

Remarks

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

Tags

Any tags assigned to the route server peer.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Back to top Generated by DocFX