Show / Hide Table of Contents

Interface CfnVerifiedAccessEndpoint.INetworkInterfaceOptionsProperty

Describes the network interface options when creating an AWS Verified Access endpoint using the network-interface type.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccessendpoint-networkinterfaceoptions.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 networkInterfaceOptionsProperty = new NetworkInterfaceOptionsProperty {
                 NetworkInterfaceId = "networkInterfaceId",
                 Port = 123,
                 PortRanges = new [] { new PortRangeProperty {
                     FromPort = 123,
                     ToPort = 123
                 } },
                 Protocol = "protocol"
             };

Synopsis

Properties

NetworkInterfaceId

The ID of the network interface.

Port

The IP port number.

PortRanges

The port ranges.

Protocol

The IP protocol.

Properties

NetworkInterfaceId

The ID of the network interface.

string? NetworkInterfaceId { get; }
Property Value

string

Remarks

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

Port

The IP port number.

double? Port { get; }
Property Value

double?

Remarks

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

PortRanges

The port ranges.

object? PortRanges { get; }
Property Value

object

Remarks

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

Protocol

The IP protocol.

string? Protocol { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX