PrefixListReference

class aws_cdk.aws_ec2.PrefixListReference(*, prefix_list_arn, prefix_list_id)

Bases: object

A reference to a PrefixList resource.

Parameters:
  • prefix_list_arn (str) – The ARN of the PrefixList resource.

  • prefix_list_id (str) – The PrefixListId of the PrefixList resource.

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 import aws_ec2 as ec2

prefix_list_reference = ec2.PrefixListReference(
    prefix_list_arn="prefixListArn",
    prefix_list_id="prefixListId"
)

Attributes

prefix_list_arn

The ARN of the PrefixList resource.

prefix_list_id

The PrefixListId of the PrefixList resource.