Show / Hide Table of Contents

Class CfnNetworkAclEntry.IcmpProperty

Describes the ICMP type and code.

Inheritance
object
CfnNetworkAclEntry.IcmpProperty
Implements
CfnNetworkAclEntry.IIcmpProperty
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 CfnNetworkAclEntry.IcmpProperty : CfnNetworkAclEntry.IIcmpProperty
Syntax (vb)
Public Class CfnNetworkAclEntry.IcmpProperty Implements CfnNetworkAclEntry.IIcmpProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.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 icmpProperty = new IcmpProperty {
                 Code = 123,
                 Type = 123
             };

Synopsis

Constructors

IcmpProperty()

Describes the ICMP type and code.

Properties

Code

The Internet Control Message Protocol (ICMP) code.

Type

The Internet Control Message Protocol (ICMP) type.

Constructors

IcmpProperty()

Describes the ICMP type and code.

public IcmpProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.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 icmpProperty = new IcmpProperty {
                 Code = 123,
                 Type = 123
             };

Properties

Code

The Internet Control Message Protocol (ICMP) code.

public double? Code { get; set; }
Property Value

double?

Remarks

You can use -1 to specify all ICMP codes for the given ICMP type. Required if you specify 1 (ICMP) for the protocol parameter.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-code

Type

The Internet Control Message Protocol (ICMP) type.

public double? Type { get; set; }
Property Value

double?

Remarks

You can use -1 to specify all ICMP types. Conditional requirement: Required if you specify 1 (ICMP) for the CreateNetworkAclEntry protocol parameter.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkaclentry-icmp.html#cfn-ec2-networkaclentry-icmp-type

Implements

CfnNetworkAclEntry.IIcmpProperty
Back to top Generated by DocFX