Show / Hide Table of Contents

Class CfnVerifiedAccessEndpoint.CidrOptionsProperty

Describes the CIDR options for a Verified Access endpoint.

Inheritance
object
CfnVerifiedAccessEndpoint.CidrOptionsProperty
Implements
CfnVerifiedAccessEndpoint.ICidrOptionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVerifiedAccessEndpoint.CidrOptionsProperty : CfnVerifiedAccessEndpoint.ICidrOptionsProperty
Syntax (vb)
Public Class CfnVerifiedAccessEndpoint.CidrOptionsProperty Implements CfnVerifiedAccessEndpoint.ICidrOptionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-cidroptions.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 cidrOptionsProperty = new CidrOptionsProperty {
                 Cidr = "cidr",
                 PortRanges = new [] { new PortRangeProperty {
                     FromPort = 123,
                     ToPort = 123
                 } },
                 Protocol = "protocol",
                 SubnetIds = new [] { "subnetIds" }
             };

Synopsis

Constructors

CidrOptionsProperty()

Describes the CIDR options for a Verified Access endpoint.

Properties

Cidr

The CIDR.

PortRanges

The port ranges.

Protocol

The protocol.

SubnetIds

The IDs of the subnets.

Constructors

CidrOptionsProperty()

Describes the CIDR options for a Verified Access endpoint.

public CidrOptionsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-cidroptions.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 cidrOptionsProperty = new CidrOptionsProperty {
                 Cidr = "cidr",
                 PortRanges = new [] { new PortRangeProperty {
                     FromPort = 123,
                     ToPort = 123
                 } },
                 Protocol = "protocol",
                 SubnetIds = new [] { "subnetIds" }
             };

Properties

Cidr

The CIDR.

public string? Cidr { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-cidroptions.html#cfn-ec2-verifiedaccessendpoint-cidroptions-cidr

PortRanges

The port ranges.

public object? PortRanges { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-cidroptions.html#cfn-ec2-verifiedaccessendpoint-cidroptions-portranges

Type union: either IResolvable or (either IResolvable or CfnVerifiedAccessEndpoint.IPortRangeProperty)[]

Protocol

The protocol.

public string? Protocol { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-cidroptions.html#cfn-ec2-verifiedaccessendpoint-cidroptions-protocol

SubnetIds

The IDs of the subnets.

public string[]? SubnetIds { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-cidroptions.html#cfn-ec2-verifiedaccessendpoint-cidroptions-subnetids

Implements

CfnVerifiedAccessEndpoint.ICidrOptionsProperty
Back to top Generated by DocFX