Show / Hide Table of Contents

Interface CfnPrefixList.IEntryProperty

An entry for a prefix list.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnPrefixList.IEntryProperty
Syntax (vb)
Public Interface 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

Properties

Cidr

The CIDR block.

Description

A description for the entry.

Properties

Cidr

The CIDR block.

string Cidr { get; }
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.

string? Description { get; }
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

Back to top Generated by DocFX