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 INetworkInterfaceOptionsProperty
Syntax (vb)
Public Interface INetworkInterfaceOptionsProperty
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 networkInterfaceOptionsProperty = new NetworkInterfaceOptionsProperty {
NetworkInterfaceId = "networkInterfaceId",
Port = 123,
PortRanges = new [] { new PortRangeProperty {
FromPort = 123,
ToPort = 123
} },
Protocol = "protocol"
};
Synopsis
Properties
Network |
The ID of the network interface. |
Port | The IP port number. |
Port |
The port ranges. |
Protocol | The IP protocol. |
Properties
NetworkInterfaceId
The ID of the network interface.
virtual string NetworkInterfaceId { get; }
Property Value
System.
Remarks
Port
The IP port number.
virtual Nullable<double> Port { get; }
Property Value
System.
Remarks
PortRanges
The port ranges.
virtual object PortRanges { get; }
Property Value
System.
Remarks
Protocol
The IP protocol.
virtual string Protocol { get; }
Property Value
System.