Creates a managed prefix list with a maximum of 100 entries for IPv4 addresses, including specific subnets and individual IPs.

CloudFormation Template

AWSTemplateFormatVersion: '2010-09-09'
Parameters: {}
Resources:
  ManagedPrefixList:
    Type: 'AWS::EC2::PrefixList'
    Properties:
      PrefixListName: undefined
      AddressFamily: undefined
      MaxEntries: undefined
      Entries:
        - Cidr: undefined
          Description: undefined
        - Cidr: undefined
          Description: undefined
Conditions: {}
Metadata: {}