Interface CfnVerifiedAccessEndpoint.ICidrOptionsProperty
Describes the CIDR options for a Verified Access endpoint.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnVerifiedAccessEndpoint.ICidrOptionsProperty
Syntax (vb)
Public Interface CfnVerifiedAccessEndpoint.ICidrOptionsProperty
Remarks
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
Properties
| Cidr | The CIDR. |
| PortRanges | The port ranges. |
| Protocol | The protocol. |
| SubnetIds | The IDs of the subnets. |
Properties
Cidr
The CIDR.
string? Cidr { get; }
Property Value
Remarks
PortRanges
The port ranges.
object? PortRanges { get; }
Property Value
Remarks
Protocol
The protocol.
string? Protocol { get; }