CfnPrefixListPropsMixin

class aws_cdk.cfn_property_mixins.aws_ec2.CfnPrefixListPropsMixin(props, *, strategy=None)

Bases: Mixin

Specifies a managed prefix list.

You can add one or more entries to the prefix list. Each entry consists of a CIDR block and an optional description.

See:

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

CloudformationResource:

AWS::EC2::PrefixList

Mixin:

true

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_ec2 as ec2
import aws_cdk as cdk

# merge_strategy: cdk.IMergeStrategy

cfn_prefix_list_props_mixin = ec2.CfnPrefixListPropsMixin(ec2.CfnPrefixListMixinProps(
    address_family="addressFamily",
    entries=[ec2.CfnPrefixListPropsMixin.EntryProperty(
        cidr="cidr",
        description="description"
    )],
    max_entries=123,
    prefix_list_name="prefixListName",
    tags=[cdk.CfnTag(
        key="key",
        value="value"
    )]
),
    strategy=merge_strategy
)

Create a mixin to apply properties to AWS::EC2::PrefixList.

Parameters:
  • props (Union[CfnPrefixListMixinProps, Dict[str, Any]]) – L1 properties to apply.

  • strategy (Optional[IMergeStrategy]) – Strategy for merging nested properties. Default: - PropertyMergeStrategy.combine()

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

None

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['addressFamily', 'entries', 'maxEntries', 'prefixListName', 'tags']

Static Methods

classmethod is_mixin(x)

Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

EntryProperty

class CfnPrefixListPropsMixin.EntryProperty(*, cidr=None, description=None)

Bases: object

An entry for a prefix list.

Parameters:
  • cidr (Optional[str]) – The CIDR block.

  • description (Optional[str]) – A description for the entry. Constraints: Up to 255 characters in length.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-prefixlist-entry.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.cfn_property_mixins import aws_ec2 as ec2

entry_property = ec2.CfnPrefixListPropsMixin.EntryProperty(
    cidr="cidr",
    description="description"
)

Attributes

cidr

The CIDR block.

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.

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