Class CfnPrefixList.EntryProperty
An entry for a prefix list.
Implements
Inherited Members
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
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
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
Remarks
Description
A description for the entry.
public string? Description { get; set; }
Property Value
Remarks
Constraints: Up to 255 characters in length.