Show / Hide Table of Contents

Class CfnPrefixList.EntryProperty

An entry for a prefix list.

Inheritance
object
CfnPrefixList.EntryProperty
Implements
CfnPrefixList.IEntryProperty
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 CfnPrefixList.EntryProperty : CfnPrefixList.IEntryProperty
Syntax (vb)
Public Class CfnPrefixList.EntryProperty Implements CfnPrefixList.IEntryProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-prefixlist-entry.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 entryProperty = new EntryProperty {
                 Cidr = "cidr",

                 // the properties below are optional
                 Description = "description"
             };

Synopsis

Constructors

EntryProperty()

An entry for a prefix list.

Properties

Cidr

The CIDR block.

Description

A description for the entry.

Constructors

EntryProperty()

An entry for a prefix list.

public EntryProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-prefixlist-entry.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 entryProperty = new EntryProperty {
                 Cidr = "cidr",

                 // the properties below are optional
                 Description = "description"
             };

Properties

Cidr

The CIDR block.

public string Cidr { get; set; }
Property Value

string

Remarks

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

Description

A description for the entry.

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

string

Remarks

Constraints: Up to 255 characters in length.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-prefixlist-entry.html#cfn-ec2-prefixlist-entry-description

Implements

CfnPrefixList.IEntryProperty
Back to top Generated by DocFX