Show / Hide Table of Contents

Interface IPrefixListProps

Properties for creating a prefix list.

Inherited Members
IPrefixListOptions.MaxEntries
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IPrefixListProps : IPrefixListOptions
Syntax (vb)
Public Interface IPrefixListProps Inherits IPrefixListOptions
Remarks

ExampleMetadata: infused

Examples
new PrefixList(this, "EmptyPrefixList", new PrefixListProps {
                MaxEntries = 100
            });

Synopsis

Properties

AddressFamily

The address family of the prefix list.

Entries

The list of entries for the prefix list.

PrefixListName

The name of the prefix list.

Properties

AddressFamily

The address family of the prefix list.

AddressFamily? AddressFamily { get; }
Property Value

AddressFamily?

Remarks

Default: AddressFamily.IP_V4

Entries

The list of entries for the prefix list.

CfnPrefixList.IEntryProperty[]? Entries { get; }
Property Value

IEntryProperty[]

Remarks

Default: []

PrefixListName

The name of the prefix list.

string? PrefixListName { get; }
Property Value

string

Remarks

Default: None

Remarks: It is not recommended to use an explicit name.

Back to top Generated by DocFX