Show / Hide Table of Contents

Class PrefixListOptions

Options to add a prefix list.

Inheritance
object
PrefixListOptions
Implements
IPrefixListOptions
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 PrefixListOptions : IPrefixListOptions
Syntax (vb)
Public Class PrefixListOptions Implements IPrefixListOptions
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 prefixListOptions = new PrefixListOptions {
                MaxEntries = 123
            };

Synopsis

Constructors

PrefixListOptions()

Options to add a prefix list.

Properties

MaxEntries

The maximum number of entries for the prefix list.

Constructors

PrefixListOptions()

Options to add a prefix list.

public PrefixListOptions()
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 prefixListOptions = new PrefixListOptions {
                MaxEntries = 123
            };

Properties

MaxEntries

The maximum number of entries for the prefix list.

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

double?

Remarks

Default: Automatically-calculated

Implements

IPrefixListOptions
Back to top Generated by DocFX