PrefixListOptions
- class aws_cdk.aws_ec2.PrefixListOptions(*, max_entries=None)
Bases:
object
Options to add a prefix list.
- Parameters:
max_entries (
Union
[int
,float
,None
]) – The maximum number of entries for the prefix list. Default: Automatically-calculated- 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_options = ec2.PrefixListOptions( max_entries=123 )
Attributes
- max_entries
The maximum number of entries for the prefix list.
- Default:
Automatically-calculated