Show / Hide Table of Contents

Class CfnPrefixListMixinProps

Properties for CfnPrefixListPropsMixin.

Inheritance
object
CfnPrefixListMixinProps
Implements
ICfnPrefixListMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnPrefixListMixinProps : ICfnPrefixListMixinProps
Syntax (vb)
Public Class CfnPrefixListMixinProps Implements ICfnPrefixListMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.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.Mixins.Preview.AWS.EC2.Mixins;

             var cfnPrefixListMixinProps = new CfnPrefixListMixinProps {
                 AddressFamily = "addressFamily",
                 Entries = new [] { new EntryProperty {
                     Cidr = "cidr",
                     Description = "description"
                 } },
                 MaxEntries = 123,
                 PrefixListName = "prefixListName",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnPrefixListMixinProps()

Properties for CfnPrefixListPropsMixin.

Properties

AddressFamily

The IP address type.

Entries

The entries for the prefix list.

MaxEntries

The maximum number of entries for the prefix list.

PrefixListName

A name for the prefix list.

Tags

The tags for the prefix list.

Constructors

CfnPrefixListMixinProps()

Properties for CfnPrefixListPropsMixin.

public CfnPrefixListMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.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.Mixins.Preview.AWS.EC2.Mixins;

             var cfnPrefixListMixinProps = new CfnPrefixListMixinProps {
                 AddressFamily = "addressFamily",
                 Entries = new [] { new EntryProperty {
                     Cidr = "cidr",
                     Description = "description"
                 } },
                 MaxEntries = 123,
                 PrefixListName = "prefixListName",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

AddressFamily

The IP address type.

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

string

Remarks

Valid Values: IPv4 | IPv6

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-addressfamily

Entries

The entries for the prefix list.

public object? Entries { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-entries

Type union: either IResolvable or (either IResolvable or CfnPrefixListPropsMixin.IEntryProperty)[]

MaxEntries

The maximum number of entries for the prefix list.

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

double?

Remarks

You can't modify the entries and the size of a prefix list at the same time.

This property is required when you create a prefix list.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-maxentries

PrefixListName

A name for the prefix list.

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

string

Remarks

Constraints: Up to 255 characters in length. The name cannot start with com.amazonaws .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-prefixlistname

Tags

The tags for the prefix list.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-prefixlist.html#cfn-ec2-prefixlist-tags

Implements

ICfnPrefixListMixinProps
Back to top Generated by DocFX