gitextract_6v0r_5sn/ ├── .github/ │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── foundational/ │ ├── README.md │ ├── account-vending/ │ │ ├── README.md │ │ ├── example-manifest.yaml │ │ ├── portfolios/ │ │ │ ├── account-vending-with-aws-control-tower/ │ │ │ │ └── v1/ │ │ │ │ ├── product.template.yaml │ │ │ │ └── template.drawio │ │ │ ├── account-vending-with-aws-organizations/ │ │ │ │ └── v1/ │ │ │ │ ├── product.template.yaml │ │ │ │ └── template.drawio │ │ │ └── account-vending.yaml │ │ └── stacks/ │ │ ├── account-vending.yaml │ │ ├── prereqs-controltower-account/ │ │ │ └── v1/ │ │ │ ├── stack.template.yaml │ │ │ └── template.drawio │ │ ├── prereqs-orgs-account/ │ │ │ └── v1/ │ │ │ ├── stack.template.yaml │ │ │ └── template.drawio │ │ ├── prereqs-puppet-account/ │ │ │ └── v1/ │ │ │ ├── requirements.txt │ │ │ ├── src/ │ │ │ │ └── AccountCreationCustomResourceBacker/ │ │ │ │ └── handler.py │ │ │ ├── stack.template.yaml │ │ │ └── template.drawio │ │ └── prereqs-puppet-account-optional/ │ │ └── v1/ │ │ ├── stack.template.yaml │ │ └── template.drawio │ ├── amazon-guardduty-multi-account/ │ │ ├── README.md │ │ ├── example-manifest.yaml │ │ └── stacks/ │ │ ├── amazon-guardduty-multi-account.yaml │ │ ├── enabler-and-creator/ │ │ │ ├── enabler-and-creator.drawio │ │ │ └── v1/ │ │ │ └── stack.template.yaml │ │ ├── prereqs-orgs-account/ │ │ │ ├── prereqs-orgs-account.drawio │ │ │ └── v1/ │ │ │ └── stack.template.yaml │ │ └── prereqs-securitytooling-account/ │ │ ├── prereqs-securitytooling-account.drawio │ │ └── v1/ │ │ └── stack.template.yaml │ ├── aws-securityhub-multi-account/ │ │ ├── README.md │ │ └── stacks/ │ │ ├── aws-securityhub-multi-account.yaml │ │ ├── enabler-and-creator/ │ │ │ └── v1/ │ │ │ └── stack.template.yaml │ │ ├── prereqs-orgs-account/ │ │ │ └── v1/ │ │ │ └── stack.template.yaml │ │ └── prereqs-securitytooling-account/ │ │ └── v1/ │ │ └── stack.template.yaml │ └── delete-default-networking/ │ ├── example-manifest.yaml │ └── stacks/ │ ├── delete-default-networking.yaml │ └── function/ │ └── v1/ │ ├── README.md │ └── stack.template.yaml ├── operations/ │ ├── codebuild-sns-notifier/ │ │ ├── README.md │ │ ├── example-manifest.yaml │ │ └── stacks/ │ │ ├── codebuild-sns-notifier/ │ │ │ └── v1/ │ │ │ └── stack.template.yaml │ │ └── codebuild-sns-notifier.yaml │ ├── codecommit-backups/ │ │ ├── README.md │ │ ├── example-manifest.yaml │ │ └── stacks/ │ │ ├── codecommit-backups/ │ │ │ └── v1/ │ │ │ └── stack.template.yaml │ │ └── codecommit-backups.yaml │ └── service-catalog-puppet-pipeline-logs-exporter/ │ ├── README.md │ ├── example-manifest.yaml │ └── stacks/ │ ├── service-catalog-puppet-pipeline-logs-exporter/ │ │ ├── service-catalog-puppet-pipeline-logs-exporter.drawio │ │ └── v1/ │ │ └── stack.template.yaml │ └── service-catalog-puppet-pipeline-logs-exporter.yaml ├── reference/ │ ├── aws-cloudformation-resources-all-fields/ │ │ ├── AWS-ACMPCA-Certificate/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ACMPCA-CertificateAuthority/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ACMPCA-CertificateAuthorityActivation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AccessAnalyzer-Analyzer/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AmazonMQ-Broker/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AmazonMQ-Configuration/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AmazonMQ-ConfigurationAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Amplify-App/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Amplify-Branch/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Amplify-Domain/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-Account/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-ApiKey/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-Authorizer/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-BasePathMapping/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-ClientCertificate/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-Deployment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-DocumentationPart/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-DocumentationVersion/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-DomainName/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-GatewayResponse/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-Method/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-Model/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-RequestValidator/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-Resource/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-RestApi/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-Stage/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-UsagePlan/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-UsagePlanKey/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGateway-VpcLink/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGatewayV2-Api/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGatewayV2-ApiMapping/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGatewayV2-Authorizer/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGatewayV2-Deployment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGatewayV2-DomainName/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGatewayV2-Integration/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGatewayV2-IntegrationResponse/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGatewayV2-Model/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGatewayV2-Route/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGatewayV2-RouteResponse/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApiGatewayV2-Stage/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppConfig-Application/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppConfig-ConfigurationProfile/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppConfig-Deployment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppConfig-DeploymentStrategy/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppConfig-Environment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppConfig-HostedConfigurationVersion/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppMesh-Mesh/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppMesh-Route/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppMesh-VirtualNode/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppMesh-VirtualRouter/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppMesh-VirtualService/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppStream-DirectoryConfig/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppStream-Fleet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppStream-ImageBuilder/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppStream-Stack/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppStream-StackFleetAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppStream-StackUserAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppStream-User/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppSync-ApiCache/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppSync-ApiKey/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppSync-DataSource/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppSync-FunctionConfiguration/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppSync-GraphQLApi/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppSync-GraphQLSchema/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AppSync-Resolver/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApplicationAutoScaling-ScalableTarget/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ApplicationAutoScaling-ScalingPolicy/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Athena-DataCatalog/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Athena-NamedQuery/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Athena-WorkGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AutoScaling-AutoScalingGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AutoScaling-LaunchConfiguration/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AutoScaling-LifecycleHook/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AutoScaling-ScalingPolicy/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AutoScaling-ScheduledAction/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-AutoScalingPlans-ScalingPlan/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Backup-BackupPlan/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Backup-BackupSelection/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Backup-BackupVault/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Batch-ComputeEnvironment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Batch-JobDefinition/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Batch-JobQueue/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Budgets-Budget/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CE-CostCategory/ │ │ │ └── 16.1.0/ │ │ │ └── product.template-us-east-1.yaml │ │ ├── AWS-Cassandra-Keyspace/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Cassandra-Table/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CertificateManager-Certificate/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Chatbot-SlackChannelConfiguration/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Cloud9-EnvironmentEC2/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CloudFormation-CustomResource/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CloudFormation-Macro/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CloudFormation-Stack/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CloudFormation-WaitCondition/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CloudFormation-WaitConditionHandle/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CloudFront-CloudFrontOriginAccessIdentity/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CloudFront-Distribution/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CloudFront-StreamingDistribution/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CloudTrail-Trail/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CloudWatch-Alarm/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CloudWatch-AnomalyDetector/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CloudWatch-CompositeAlarm/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CloudWatch-Dashboard/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CloudWatch-InsightRule/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CodeBuild-Project/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CodeBuild-ReportGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CodeBuild-SourceCredential/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CodeCommit-Repository/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CodeDeploy-Application/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CodeDeploy-DeploymentConfig/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CodeDeploy-DeploymentGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CodeGuruProfiler-ProfilingGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CodePipeline-CustomActionType/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CodePipeline-Pipeline/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CodePipeline-Webhook/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CodeStar-GitHubRepository/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CodeStarConnections-Connection/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-CodeStarNotifications-NotificationRule/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Cognito-IdentityPool/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Cognito-IdentityPoolRoleAttachment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Cognito-UserPool/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Cognito-UserPoolClient/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Cognito-UserPoolDomain/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Cognito-UserPoolGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Cognito-UserPoolIdentityProvider/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Cognito-UserPoolResourceServer/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Cognito-UserPoolRiskConfigurationAttachment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Cognito-UserPoolUICustomizationAttachment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Cognito-UserPoolUser/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Cognito-UserPoolUserToGroupAttachment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Config-AggregationAuthorization/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Config-ConfigRule/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Config-ConfigurationAggregator/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Config-ConfigurationRecorder/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Config-ConformancePack/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Config-DeliveryChannel/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Config-OrganizationConfigRule/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Config-OrganizationConformancePack/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Config-RemediationConfiguration/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DAX-Cluster/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DAX-ParameterGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DAX-SubnetGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DLM-LifecyclePolicy/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DMS-Certificate/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DMS-Endpoint/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DMS-EventSubscription/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DMS-ReplicationInstance/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DMS-ReplicationSubnetGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DMS-ReplicationTask/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DataPipeline-Pipeline/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Detective-Graph/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Detective-MemberInvitation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DirectoryService-MicrosoftAD/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DirectoryService-SimpleAD/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DocDB-DBCluster/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DocDB-DBClusterParameterGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DocDB-DBInstance/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DocDB-DBSubnetGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-DynamoDB-Table/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-CapacityReservation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-ClientVpnAuthorizationRule/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-ClientVpnEndpoint/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-ClientVpnRoute/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-ClientVpnTargetNetworkAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-CustomerGateway/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-DHCPOptions/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-EC2Fleet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-EIP/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-EIPAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-EgressOnlyInternetGateway/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-FlowLog/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-GatewayRouteTableAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-Host/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-Instance/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-InternetGateway/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-LaunchTemplate/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-LocalGatewayRoute/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-LocalGatewayRouteTableVPCAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-NatGateway/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-NetworkAcl/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-NetworkAclEntry/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-NetworkInterface/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-NetworkInterfaceAttachment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-NetworkInterfacePermission/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-PlacementGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-PrefixList/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-Route/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-RouteTable/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-SecurityGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-SecurityGroupEgress/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-SecurityGroupIngress/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-SpotFleet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-Subnet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-SubnetCidrBlock/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-SubnetNetworkAclAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-SubnetRouteTableAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-TrafficMirrorFilter/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-TrafficMirrorFilterRule/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-TrafficMirrorSession/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-TrafficMirrorTarget/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-TransitGateway/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-TransitGatewayAttachment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-TransitGatewayRoute/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-TransitGatewayRouteTable/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-TransitGatewayRouteTableAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-TransitGatewayRouteTablePropagation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-VPC/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-VPCCidrBlock/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-VPCDHCPOptionsAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-VPCEndpoint/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-VPCEndpointConnectionNotification/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ └── product.template-us-east-1.yaml │ │ ├── AWS-EC2-VPCEndpointService/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-VPCEndpointServicePermissions/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-VPCGatewayAttachment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-VPCPeeringConnection/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-VPNConnection/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-VPNConnectionRoute/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-VPNGateway/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-VPNGatewayRoutePropagation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-Volume/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EC2-VolumeAttachment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ECR-Repository/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ECS-CapacityProvider/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ECS-Cluster/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ECS-PrimaryTaskSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ECS-Service/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ECS-TaskDefinition/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ECS-TaskSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EFS-AccessPoint/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EFS-FileSystem/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EFS-MountTarget/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EKS-Cluster/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EKS-Nodegroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EMR-Cluster/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EMR-InstanceFleetConfig/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EMR-InstanceGroupConfig/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EMR-SecurityConfiguration/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EMR-Step/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElastiCache-CacheCluster/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElastiCache-ParameterGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElastiCache-ReplicationGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElastiCache-SecurityGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElastiCache-SecurityGroupIngress/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElastiCache-SubnetGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElasticBeanstalk-Application/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElasticBeanstalk-ApplicationVersion/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElasticBeanstalk-ConfigurationTemplate/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElasticBeanstalk-Environment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElasticLoadBalancing-LoadBalancer/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElasticLoadBalancingV2-Listener/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElasticLoadBalancingV2-ListenerCertificate/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElasticLoadBalancingV2-ListenerRule/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElasticLoadBalancingV2-LoadBalancer/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ElasticLoadBalancingV2-TargetGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Elasticsearch-Domain/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EventSchemas-Discoverer/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EventSchemas-Registry/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EventSchemas-RegistryPolicy/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-EventSchemas-Schema/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Events-EventBus/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Events-EventBusPolicy/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Events-Rule/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-FMS-NotificationChannel/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-FMS-Policy/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-FSx-FileSystem/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GameLift-Alias/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GameLift-Build/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GameLift-Fleet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GameLift-GameSessionQueue/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GameLift-MatchmakingConfiguration/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GameLift-MatchmakingRuleSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GameLift-Script/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GlobalAccelerator-Accelerator/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GlobalAccelerator-EndpointGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GlobalAccelerator-Listener/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Glue-Classifier/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Glue-Connection/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Glue-Crawler/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Glue-DataCatalogEncryptionSettings/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Glue-Database/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Glue-DevEndpoint/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Glue-Job/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Glue-MLTransform/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Glue-Partition/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Glue-SecurityConfiguration/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Glue-Table/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Glue-Trigger/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Glue-Workflow/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-ConnectorDefinition/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-ConnectorDefinitionVersion/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-CoreDefinition/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-CoreDefinitionVersion/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-DeviceDefinition/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-DeviceDefinitionVersion/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-FunctionDefinition/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-FunctionDefinitionVersion/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-Group/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-GroupVersion/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-LoggerDefinition/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-LoggerDefinitionVersion/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-ResourceDefinition/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-ResourceDefinitionVersion/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-SubscriptionDefinition/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Greengrass-SubscriptionDefinitionVersion/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GroundStation-Config/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GroundStation-DataflowEndpointGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GroundStation-MissionProfile/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GuardDuty-Detector/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GuardDuty-Filter/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GuardDuty-IPSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GuardDuty-Master/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GuardDuty-Member/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-GuardDuty-ThreatIntelSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IAM-AccessKey/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IAM-Group/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IAM-InstanceProfile/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IAM-ManagedPolicy/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IAM-Policy/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IAM-Role/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IAM-ServiceLinkedRole/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IAM-User/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IAM-UserToGroupAddition/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ImageBuilder-Component/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ImageBuilder-DistributionConfiguration/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ImageBuilder-Image/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ImageBuilder-ImagePipeline/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ImageBuilder-ImageRecipe/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ImageBuilder-InfrastructureConfiguration/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Inspector-AssessmentTarget/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Inspector-AssessmentTemplate/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Inspector-ResourceGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoT-Certificate/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoT-Policy/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoT-PolicyPrincipalAttachment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoT-ProvisioningTemplate/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoT-Thing/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoT-ThingPrincipalAttachment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoT-TopicRule/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoT1Click-Device/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoT1Click-Placement/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoT1Click-Project/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoTAnalytics-Channel/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoTAnalytics-Dataset/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoTAnalytics-Datastore/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoTAnalytics-Pipeline/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoTEvents-DetectorModel/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoTEvents-Input/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-IoTThingsGraph-FlowTemplate/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-KMS-Alias/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-KMS-Key/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Kinesis-Stream/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Kinesis-StreamConsumer/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-KinesisAnalytics-Application/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-KinesisAnalytics-ApplicationOutput/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-KinesisAnalytics-ApplicationReferenceDataSource/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-KinesisAnalyticsV2-Application/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-KinesisAnalyticsV2-ApplicationOutput/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-KinesisFirehose-DeliveryStream/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-LakeFormation-DataLakeSettings/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-LakeFormation-Permissions/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-LakeFormation-Resource/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Lambda-Alias/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Lambda-EventInvokeConfig/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Lambda-EventSourceMapping/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Lambda-Function/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Lambda-LayerVersion/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Lambda-LayerVersionPermission/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Lambda-Permission/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Lambda-Version/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Logs-Destination/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Logs-LogGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Logs-LogStream/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Logs-MetricFilter/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Logs-SubscriptionFilter/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-MSK-Cluster/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Macie-CustomDataIdentifier/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Macie-FindingsFilter/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Macie-Session/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ManagedBlockchain-Member/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ManagedBlockchain-Node/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-MediaConvert-JobTemplate/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-MediaConvert-Preset/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-MediaConvert-Queue/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-MediaLive-Channel/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-MediaLive-Input/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-MediaLive-InputSecurityGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-MediaStore-Container/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Neptune-DBCluster/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Neptune-DBClusterParameterGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Neptune-DBInstance/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Neptune-DBParameterGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Neptune-DBSubnetGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-NetworkManager-CustomerGatewayAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-NetworkManager-Device/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-NetworkManager-GlobalNetwork/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-NetworkManager-Link/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-NetworkManager-LinkAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-NetworkManager-Site/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-NetworkManager-TransitGatewayRegistration/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-OpsWorks-App/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-OpsWorks-ElasticLoadBalancerAttachment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-OpsWorks-Instance/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-OpsWorks-Layer/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-OpsWorks-Stack/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-OpsWorks-UserProfile/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-OpsWorks-Volume/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-OpsWorksCM-Server/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-ADMChannel/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-APNSChannel/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-APNSSandboxChannel/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-APNSVoipChannel/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-APNSVoipSandboxChannel/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-App/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-ApplicationSettings/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-BaiduChannel/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-Campaign/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-EmailChannel/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-EmailTemplate/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-EventStream/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-GCMChannel/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-PushTemplate/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-SMSChannel/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-Segment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-SmsTemplate/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Pinpoint-VoiceChannel/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-PinpointEmail-ConfigurationSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-PinpointEmail-ConfigurationSetEventDestination/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-PinpointEmail-DedicatedIpPool/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-PinpointEmail-Identity/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-QLDB-Ledger/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-QLDB-Stream/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RAM-ResourceShare/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RDS-DBCluster/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RDS-DBClusterParameterGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RDS-DBInstance/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RDS-DBParameterGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RDS-DBProxy/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RDS-DBProxyTargetGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RDS-DBSecurityGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RDS-DBSecurityGroupIngress/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RDS-DBSubnetGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RDS-EventSubscription/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RDS-OptionGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Redshift-Cluster/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Redshift-ClusterParameterGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Redshift-ClusterSecurityGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Redshift-ClusterSecurityGroupIngress/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Redshift-ClusterSubnetGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ResourceGroups-Group/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RoboMaker-Fleet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RoboMaker-Robot/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RoboMaker-RobotApplication/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RoboMaker-RobotApplicationVersion/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RoboMaker-SimulationApplication/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-RoboMaker-SimulationApplicationVersion/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Route53-HealthCheck/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Route53-HostedZone/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Route53-RecordSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Route53-RecordSetGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Route53Resolver-ResolverEndpoint/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Route53Resolver-ResolverRule/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Route53Resolver-ResolverRuleAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-S3-AccessPoint/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-S3-Bucket/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-S3-BucketPolicy/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SDB-Domain/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SES-ConfigurationSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SES-ConfigurationSetEventDestination/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SES-ReceiptFilter/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SES-ReceiptRule/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SES-ReceiptRuleSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SES-Template/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SNS-Subscription/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SNS-Topic/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SNS-TopicPolicy/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SQS-Queue/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SQS-QueuePolicy/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SSM-Association/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SSM-Document/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SSM-MaintenanceWindow/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SSM-MaintenanceWindowTarget/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SSM-MaintenanceWindowTask/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SSM-Parameter/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SSM-PatchBaseline/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SSM-ResourceDataSync/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SageMaker-CodeRepository/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SageMaker-Endpoint/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SageMaker-EndpointConfig/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SageMaker-Model/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SageMaker-NotebookInstance/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SageMaker-NotebookInstanceLifecycleConfig/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SageMaker-Workteam/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SecretsManager-ResourcePolicy/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SecretsManager-RotationSchedule/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SecretsManager-Secret/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SecretsManager-SecretTargetAttachment/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-SecurityHub-Hub/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceCatalog-AcceptedPortfolioShare/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceCatalog-CloudFormationProduct/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceCatalog-CloudFormationProvisionedProduct/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceCatalog-LaunchNotificationConstraint/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceCatalog-LaunchRoleConstraint/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceCatalog-LaunchTemplateConstraint/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceCatalog-Portfolio/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceCatalog-PortfolioPrincipalAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceCatalog-PortfolioProductAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceCatalog-PortfolioShare/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceCatalog-ResourceUpdateConstraint/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceCatalog-StackSetConstraint/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceCatalog-TagOption/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceCatalog-TagOptionAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceDiscovery-HttpNamespace/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceDiscovery-Instance/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceDiscovery-PrivateDnsNamespace/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceDiscovery-PublicDnsNamespace/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-ServiceDiscovery-Service/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-StepFunctions-Activity/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-StepFunctions-StateMachine/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Synthetics-Canary/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Transfer-Server/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-Transfer-User/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAF-ByteMatchSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAF-IPSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAF-Rule/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAF-SizeConstraintSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAF-SqlInjectionMatchSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAF-WebACL/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAF-XssMatchSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFRegional-ByteMatchSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFRegional-GeoMatchSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFRegional-IPSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFRegional-RateBasedRule/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFRegional-RegexPatternSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFRegional-Rule/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFRegional-SizeConstraintSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFRegional-SqlInjectionMatchSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFRegional-WebACL/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFRegional-WebACLAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFRegional-XssMatchSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFv2-IPSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFv2-RegexPatternSet/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFv2-RuleGroup/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFv2-WebACL/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WAFv2-WebACLAssociation/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── AWS-WorkSpaces-Workspace/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-af-south-1.yaml │ │ │ ├── product.template-ap-east-1.yaml │ │ │ ├── product.template-ap-northeast-1.yaml │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-northeast-3.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-north-1.yaml │ │ │ ├── product.template-eu-south-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-me-south-1.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ ├── Alexa-ASK-Skill/ │ │ │ └── 16.1.0/ │ │ │ ├── product.template-ap-northeast-2.yaml │ │ │ ├── product.template-ap-south-1.yaml │ │ │ ├── product.template-ap-southeast-1.yaml │ │ │ ├── product.template-ap-southeast-2.yaml │ │ │ ├── product.template-ca-central-1.yaml │ │ │ ├── product.template-eu-central-1.yaml │ │ │ ├── product.template-eu-west-1.yaml │ │ │ ├── product.template-eu-west-2.yaml │ │ │ ├── product.template-eu-west-3.yaml │ │ │ ├── product.template-sa-east-1.yaml │ │ │ ├── product.template-us-east-1.yaml │ │ │ ├── product.template-us-east-2.yaml │ │ │ ├── product.template-us-west-1.yaml │ │ │ └── product.template-us-west-2.yaml │ │ └── portfolio.yaml │ └── aws-cloudformation-resources-required-fields-only/ │ ├── AWS-ACMPCA-Certificate/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ACMPCA-CertificateAuthority/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ACMPCA-CertificateAuthorityActivation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AccessAnalyzer-Analyzer/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AmazonMQ-Broker/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AmazonMQ-Configuration/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AmazonMQ-ConfigurationAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Amplify-App/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Amplify-Branch/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Amplify-Domain/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-Account/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-ApiKey/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-Authorizer/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-BasePathMapping/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-ClientCertificate/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-Deployment/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-DocumentationPart/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-DocumentationVersion/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-DomainName/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-GatewayResponse/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-Method/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-Model/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-RequestValidator/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-Resource/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-RestApi/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-Stage/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-UsagePlan/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-UsagePlanKey/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGateway-VpcLink/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGatewayV2-Api/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGatewayV2-ApiMapping/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGatewayV2-Authorizer/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGatewayV2-Deployment/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGatewayV2-DomainName/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGatewayV2-Integration/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGatewayV2-IntegrationResponse/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGatewayV2-Model/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGatewayV2-Route/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGatewayV2-RouteResponse/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApiGatewayV2-Stage/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppConfig-Application/ │ │ └── 16.1.0/ │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppConfig-ConfigurationProfile/ │ │ └── 16.1.0/ │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppConfig-Deployment/ │ │ └── 16.1.0/ │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppConfig-DeploymentStrategy/ │ │ └── 16.1.0/ │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppConfig-Environment/ │ │ └── 16.1.0/ │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppConfig-HostedConfigurationVersion/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppMesh-Mesh/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppMesh-Route/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppMesh-VirtualNode/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppMesh-VirtualRouter/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppMesh-VirtualService/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppStream-DirectoryConfig/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppStream-Fleet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppStream-ImageBuilder/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppStream-Stack/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppStream-StackFleetAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppStream-StackUserAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppStream-User/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppSync-ApiCache/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppSync-ApiKey/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppSync-DataSource/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppSync-FunctionConfiguration/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppSync-GraphQLApi/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppSync-GraphQLSchema/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AppSync-Resolver/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApplicationAutoScaling-ScalableTarget/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ApplicationAutoScaling-ScalingPolicy/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Athena-DataCatalog/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Athena-NamedQuery/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Athena-WorkGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AutoScaling-AutoScalingGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AutoScaling-LaunchConfiguration/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AutoScaling-LifecycleHook/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AutoScaling-ScalingPolicy/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AutoScaling-ScheduledAction/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-AutoScalingPlans-ScalingPlan/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Backup-BackupPlan/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Backup-BackupSelection/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Backup-BackupVault/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Batch-ComputeEnvironment/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Batch-JobDefinition/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Batch-JobQueue/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Budgets-Budget/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CE-CostCategory/ │ │ └── 16.1.0/ │ │ └── product.template-us-east-1.yaml │ ├── AWS-Cassandra-Keyspace/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Cassandra-Table/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CertificateManager-Certificate/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Chatbot-SlackChannelConfiguration/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Cloud9-EnvironmentEC2/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CloudFormation-CustomResource/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CloudFormation-Macro/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CloudFormation-Stack/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CloudFormation-WaitCondition/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CloudFormation-WaitConditionHandle/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CloudFront-CloudFrontOriginAccessIdentity/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CloudFront-Distribution/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CloudFront-StreamingDistribution/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CloudTrail-Trail/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CloudWatch-Alarm/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CloudWatch-AnomalyDetector/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CloudWatch-CompositeAlarm/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CloudWatch-Dashboard/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CloudWatch-InsightRule/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CodeBuild-Project/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CodeBuild-ReportGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CodeBuild-SourceCredential/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CodeCommit-Repository/ │ │ └── 16.1.0/ │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CodeDeploy-Application/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CodeDeploy-DeploymentConfig/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CodeDeploy-DeploymentGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CodeGuruProfiler-ProfilingGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CodePipeline-CustomActionType/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CodePipeline-Pipeline/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CodePipeline-Webhook/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CodeStar-GitHubRepository/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CodeStarConnections-Connection/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-CodeStarNotifications-NotificationRule/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Cognito-IdentityPool/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Cognito-IdentityPoolRoleAttachment/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Cognito-UserPool/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Cognito-UserPoolClient/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Cognito-UserPoolDomain/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Cognito-UserPoolGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Cognito-UserPoolIdentityProvider/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Cognito-UserPoolResourceServer/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Cognito-UserPoolRiskConfigurationAttachment/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Cognito-UserPoolUICustomizationAttachment/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Cognito-UserPoolUser/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Cognito-UserPoolUserToGroupAttachment/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Config-AggregationAuthorization/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Config-ConfigRule/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Config-ConfigurationAggregator/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Config-ConfigurationRecorder/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Config-ConformancePack/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Config-DeliveryChannel/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Config-OrganizationConfigRule/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Config-OrganizationConformancePack/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Config-RemediationConfiguration/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DAX-Cluster/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DAX-ParameterGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DAX-SubnetGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DLM-LifecyclePolicy/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DMS-Certificate/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DMS-Endpoint/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DMS-EventSubscription/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DMS-ReplicationInstance/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DMS-ReplicationSubnetGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DMS-ReplicationTask/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DataPipeline-Pipeline/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Detective-Graph/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Detective-MemberInvitation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DirectoryService-MicrosoftAD/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DirectoryService-SimpleAD/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DocDB-DBCluster/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DocDB-DBClusterParameterGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DocDB-DBInstance/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DocDB-DBSubnetGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-DynamoDB-Table/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-CapacityReservation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-ClientVpnAuthorizationRule/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-ClientVpnEndpoint/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-ClientVpnRoute/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-ClientVpnTargetNetworkAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-CustomerGateway/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-DHCPOptions/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-EC2Fleet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-EIP/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-EIPAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-EgressOnlyInternetGateway/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-FlowLog/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-GatewayRouteTableAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-Host/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-Instance/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-InternetGateway/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-LaunchTemplate/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-LocalGatewayRoute/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-LocalGatewayRouteTableVPCAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-NatGateway/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-NetworkAcl/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-NetworkAclEntry/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-NetworkInterface/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-NetworkInterfaceAttachment/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-NetworkInterfacePermission/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-PlacementGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-PrefixList/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-Route/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-RouteTable/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-SecurityGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-SecurityGroupEgress/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-SecurityGroupIngress/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-SpotFleet/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-Subnet/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-SubnetCidrBlock/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-SubnetNetworkAclAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-SubnetRouteTableAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-TrafficMirrorFilter/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-TrafficMirrorFilterRule/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-TrafficMirrorSession/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-TrafficMirrorTarget/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-TransitGateway/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-TransitGatewayAttachment/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-TransitGatewayRoute/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-TransitGatewayRouteTable/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-TransitGatewayRouteTableAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-TransitGatewayRouteTablePropagation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-VPC/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-VPCCidrBlock/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-VPCDHCPOptionsAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-VPCEndpoint/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-VPCEndpointConnectionNotification/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-eu-north-1.yaml │ │ └── product.template-us-east-1.yaml │ ├── AWS-EC2-VPCEndpointService/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-VPCEndpointServicePermissions/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-VPCGatewayAttachment/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-VPCPeeringConnection/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-VPNConnection/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-VPNConnectionRoute/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-VPNGateway/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-VPNGatewayRoutePropagation/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-Volume/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EC2-VolumeAttachment/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ECR-Repository/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ECS-CapacityProvider/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ECS-Cluster/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ECS-PrimaryTaskSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ECS-Service/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ECS-TaskDefinition/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ECS-TaskSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EFS-AccessPoint/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EFS-FileSystem/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EFS-MountTarget/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EKS-Cluster/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EKS-Nodegroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EMR-Cluster/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EMR-InstanceFleetConfig/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EMR-InstanceGroupConfig/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EMR-SecurityConfiguration/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EMR-Step/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElastiCache-CacheCluster/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElastiCache-ParameterGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElastiCache-ReplicationGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElastiCache-SecurityGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElastiCache-SecurityGroupIngress/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElastiCache-SubnetGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElasticBeanstalk-Application/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElasticBeanstalk-ApplicationVersion/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElasticBeanstalk-ConfigurationTemplate/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElasticBeanstalk-Environment/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElasticLoadBalancing-LoadBalancer/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElasticLoadBalancingV2-Listener/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElasticLoadBalancingV2-ListenerCertificate/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElasticLoadBalancingV2-ListenerRule/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElasticLoadBalancingV2-LoadBalancer/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ElasticLoadBalancingV2-TargetGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Elasticsearch-Domain/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EventSchemas-Discoverer/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EventSchemas-Registry/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EventSchemas-RegistryPolicy/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-EventSchemas-Schema/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Events-EventBus/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Events-EventBusPolicy/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Events-Rule/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-FMS-NotificationChannel/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-FMS-Policy/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-FSx-FileSystem/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GameLift-Alias/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GameLift-Build/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GameLift-Fleet/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GameLift-GameSessionQueue/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GameLift-MatchmakingConfiguration/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GameLift-MatchmakingRuleSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GameLift-Script/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GlobalAccelerator-Accelerator/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GlobalAccelerator-EndpointGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GlobalAccelerator-Listener/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Glue-Classifier/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Glue-Connection/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Glue-Crawler/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Glue-DataCatalogEncryptionSettings/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Glue-Database/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Glue-DevEndpoint/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Glue-Job/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Glue-MLTransform/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Glue-Partition/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Glue-SecurityConfiguration/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Glue-Table/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Glue-Trigger/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Glue-Workflow/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-ConnectorDefinition/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-ConnectorDefinitionVersion/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-CoreDefinition/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-CoreDefinitionVersion/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-DeviceDefinition/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-DeviceDefinitionVersion/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-FunctionDefinition/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-FunctionDefinitionVersion/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-Group/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-GroupVersion/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-LoggerDefinition/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-LoggerDefinitionVersion/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-ResourceDefinition/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-ResourceDefinitionVersion/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-SubscriptionDefinition/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Greengrass-SubscriptionDefinitionVersion/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GroundStation-Config/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GroundStation-DataflowEndpointGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GroundStation-MissionProfile/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GuardDuty-Detector/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GuardDuty-Filter/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GuardDuty-IPSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GuardDuty-Master/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GuardDuty-Member/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-GuardDuty-ThreatIntelSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IAM-AccessKey/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IAM-Group/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IAM-InstanceProfile/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IAM-ManagedPolicy/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IAM-Policy/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IAM-Role/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IAM-ServiceLinkedRole/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IAM-User/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IAM-UserToGroupAddition/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ImageBuilder-Component/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ImageBuilder-DistributionConfiguration/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ImageBuilder-Image/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ImageBuilder-ImagePipeline/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ImageBuilder-ImageRecipe/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ImageBuilder-InfrastructureConfiguration/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Inspector-AssessmentTarget/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Inspector-AssessmentTemplate/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Inspector-ResourceGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoT-Certificate/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoT-Policy/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoT-PolicyPrincipalAttachment/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoT-ProvisioningTemplate/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoT-Thing/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoT-ThingPrincipalAttachment/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoT-TopicRule/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoT1Click-Device/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoT1Click-Placement/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoT1Click-Project/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoTAnalytics-Channel/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoTAnalytics-Dataset/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoTAnalytics-Datastore/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoTAnalytics-Pipeline/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoTEvents-DetectorModel/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoTEvents-Input/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-IoTThingsGraph-FlowTemplate/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-KMS-Alias/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-KMS-Key/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Kinesis-Stream/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Kinesis-StreamConsumer/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-KinesisAnalytics-Application/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-KinesisAnalytics-ApplicationOutput/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-KinesisAnalytics-ApplicationReferenceDataSource/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-KinesisAnalyticsV2-Application/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-KinesisAnalyticsV2-ApplicationCloudWatchLoggingOption/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-KinesisAnalyticsV2-ApplicationOutput/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-KinesisAnalyticsV2-ApplicationReferenceDataSource/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-KinesisFirehose-DeliveryStream/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-LakeFormation-DataLakeSettings/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-LakeFormation-Permissions/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-LakeFormation-Resource/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Lambda-Alias/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Lambda-EventInvokeConfig/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Lambda-EventSourceMapping/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Lambda-Function/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Lambda-LayerVersion/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Lambda-LayerVersionPermission/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Lambda-Permission/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Lambda-Version/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Logs-Destination/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Logs-LogGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Logs-LogStream/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Logs-MetricFilter/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Logs-SubscriptionFilter/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-MSK-Cluster/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Macie-CustomDataIdentifier/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Macie-FindingsFilter/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Macie-Session/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ManagedBlockchain-Member/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ManagedBlockchain-Node/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-MediaConvert-JobTemplate/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-MediaConvert-Preset/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-MediaConvert-Queue/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-MediaLive-Channel/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-MediaLive-Input/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-MediaLive-InputSecurityGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-MediaStore-Container/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Neptune-DBCluster/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Neptune-DBClusterParameterGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Neptune-DBInstance/ │ │ └── 16.1.0/ │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Neptune-DBParameterGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Neptune-DBSubnetGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-NetworkManager-CustomerGatewayAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-NetworkManager-Device/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-NetworkManager-GlobalNetwork/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-NetworkManager-Link/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-NetworkManager-LinkAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-NetworkManager-Site/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-NetworkManager-TransitGatewayRegistration/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-OpsWorks-App/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-OpsWorks-ElasticLoadBalancerAttachment/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-OpsWorks-Instance/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-OpsWorks-Layer/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-OpsWorks-Stack/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-OpsWorks-UserProfile/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-OpsWorks-Volume/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-OpsWorksCM-Server/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-ADMChannel/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-APNSChannel/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-APNSSandboxChannel/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-APNSVoipChannel/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-APNSVoipSandboxChannel/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-App/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-ApplicationSettings/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-BaiduChannel/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-Campaign/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-EmailChannel/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-EmailTemplate/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-EventStream/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-GCMChannel/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-PushTemplate/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-SMSChannel/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-Segment/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-SmsTemplate/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Pinpoint-VoiceChannel/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-PinpointEmail-ConfigurationSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-PinpointEmail-ConfigurationSetEventDestination/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-PinpointEmail-DedicatedIpPool/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-PinpointEmail-Identity/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-QLDB-Ledger/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-QLDB-Stream/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RAM-ResourceShare/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RDS-DBCluster/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RDS-DBClusterParameterGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RDS-DBInstance/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RDS-DBParameterGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RDS-DBProxy/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RDS-DBProxyTargetGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RDS-DBSecurityGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RDS-DBSecurityGroupIngress/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RDS-DBSubnetGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RDS-EventSubscription/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RDS-OptionGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Redshift-Cluster/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Redshift-ClusterParameterGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Redshift-ClusterSecurityGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Redshift-ClusterSecurityGroupIngress/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Redshift-ClusterSubnetGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ResourceGroups-Group/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RoboMaker-Fleet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RoboMaker-Robot/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RoboMaker-RobotApplication/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RoboMaker-RobotApplicationVersion/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RoboMaker-SimulationApplication/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-RoboMaker-SimulationApplicationVersion/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Route53-HealthCheck/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Route53-HostedZone/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Route53-RecordSet/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Route53-RecordSetGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Route53Resolver-ResolverEndpoint/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Route53Resolver-ResolverRule/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Route53Resolver-ResolverRuleAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-S3-AccessPoint/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-S3-Bucket/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-S3-BucketPolicy/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SDB-Domain/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SES-ConfigurationSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SES-ConfigurationSetEventDestination/ │ │ └── 16.1.0/ │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SES-ReceiptFilter/ │ │ └── 16.1.0/ │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SES-ReceiptRule/ │ │ └── 16.1.0/ │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SES-ReceiptRuleSet/ │ │ └── 16.1.0/ │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SES-Template/ │ │ └── 16.1.0/ │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SNS-Subscription/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SNS-Topic/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SNS-TopicPolicy/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SQS-Queue/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SQS-QueuePolicy/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SSM-Association/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SSM-Document/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SSM-MaintenanceWindow/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SSM-MaintenanceWindowTarget/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SSM-MaintenanceWindowTask/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SSM-Parameter/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SSM-PatchBaseline/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SSM-ResourceDataSync/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SageMaker-CodeRepository/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SageMaker-Endpoint/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SageMaker-EndpointConfig/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SageMaker-Model/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SageMaker-NotebookInstance/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SageMaker-NotebookInstanceLifecycleConfig/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SageMaker-Workteam/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SecretsManager-ResourcePolicy/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SecretsManager-RotationSchedule/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SecretsManager-Secret/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SecretsManager-SecretTargetAttachment/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-SecurityHub-Hub/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceCatalog-AcceptedPortfolioShare/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceCatalog-CloudFormationProduct/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceCatalog-CloudFormationProvisionedProduct/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceCatalog-LaunchNotificationConstraint/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceCatalog-LaunchRoleConstraint/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceCatalog-LaunchTemplateConstraint/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceCatalog-Portfolio/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceCatalog-PortfolioPrincipalAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceCatalog-PortfolioProductAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceCatalog-PortfolioShare/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceCatalog-ResourceUpdateConstraint/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceCatalog-StackSetConstraint/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceCatalog-TagOption/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceCatalog-TagOptionAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceDiscovery-HttpNamespace/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceDiscovery-Instance/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceDiscovery-PrivateDnsNamespace/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceDiscovery-PublicDnsNamespace/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-ServiceDiscovery-Service/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-StepFunctions-Activity/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-StepFunctions-StateMachine/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Synthetics-Canary/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Transfer-Server/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-Transfer-User/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAF-ByteMatchSet/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAF-IPSet/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAF-Rule/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAF-SizeConstraintSet/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAF-SqlInjectionMatchSet/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAF-WebACL/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAF-XssMatchSet/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFRegional-ByteMatchSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFRegional-GeoMatchSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFRegional-IPSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFRegional-RateBasedRule/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFRegional-RegexPatternSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFRegional-Rule/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFRegional-SizeConstraintSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFRegional-SqlInjectionMatchSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFRegional-WebACL/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFRegional-WebACLAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFRegional-XssMatchSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFv2-IPSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFv2-RegexPatternSet/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFv2-RuleGroup/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFv2-WebACL/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WAFv2-WebACLAssociation/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── AWS-WorkSpaces-Workspace/ │ │ └── 16.1.0/ │ │ ├── product.template-af-south-1.yaml │ │ ├── product.template-ap-east-1.yaml │ │ ├── product.template-ap-northeast-1.yaml │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-northeast-3.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-north-1.yaml │ │ ├── product.template-eu-south-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-me-south-1.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ ├── Alexa-ASK-Skill/ │ │ └── 16.1.0/ │ │ ├── product.template-ap-northeast-2.yaml │ │ ├── product.template-ap-south-1.yaml │ │ ├── product.template-ap-southeast-1.yaml │ │ ├── product.template-ap-southeast-2.yaml │ │ ├── product.template-ca-central-1.yaml │ │ ├── product.template-eu-central-1.yaml │ │ ├── product.template-eu-west-1.yaml │ │ ├── product.template-eu-west-2.yaml │ │ ├── product.template-eu-west-3.yaml │ │ ├── product.template-sa-east-1.yaml │ │ ├── product.template-us-east-1.yaml │ │ ├── product.template-us-east-2.yaml │ │ ├── product.template-us-west-1.yaml │ │ └── product.template-us-west-2.yaml │ └── portfolio.yaml └── unsorted/ ├── account-vending/ │ ├── README.md │ ├── account-bootstrap-shared/ │ │ ├── v1/ │ │ │ ├── README.md │ │ │ ├── product.template.yaml │ │ │ ├── requirements.txt │ │ │ └── src/ │ │ │ └── handler.py │ │ └── v2/ │ │ ├── README.md │ │ ├── product.template.yaml │ │ ├── requirements.txt │ │ └── src/ │ │ └── handler.py │ ├── account-creation/ │ │ ├── v1/ │ │ │ ├── README.md │ │ │ └── product.template.yaml │ │ └── v2/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── account-creation-shared/ │ │ ├── v1/ │ │ │ ├── README.md │ │ │ ├── product.template.yaml │ │ │ ├── requirements.txt │ │ │ └── src/ │ │ │ └── handler.py │ │ ├── v2/ │ │ │ ├── README.md │ │ │ ├── product.template.yaml │ │ │ ├── requirements.txt │ │ │ └── src/ │ │ │ └── handler.py │ │ └── v3/ │ │ ├── README.md │ │ ├── product.template.yaml │ │ ├── requirements.txt │ │ └── src/ │ │ └── handler.py │ ├── manifest.yaml │ ├── org-bootstrap.template.README.md │ ├── org-bootstrap.template.yaml │ └── portfolio.yaml ├── aws-config/ │ ├── aws-config/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── manifest.yaml │ └── portfolio.yaml ├── aws-config-aggregator/ │ ├── aws-config-aggregator/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── manifest.yaml │ └── portfolio.yaml ├── aws-control-tower-augmented-account-factory/ │ ├── README.md │ ├── account-bootstrap-shared/ │ │ ├── v2/ │ │ │ ├── README.md │ │ │ ├── product.template.yaml │ │ │ ├── requirements.txt │ │ │ └── src/ │ │ │ └── handler.py │ │ └── v3/ │ │ ├── README.md │ │ ├── product.template.yaml │ │ ├── requirements.txt │ │ └── src/ │ │ └── handler.py │ ├── account-creation-notifier/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── account-details-to-aws-account-id/ │ │ └── v1/ │ │ ├── README.md │ │ ├── org-bootstrap.template.yaml │ │ └── product.template.yaml │ ├── account-type-to-organizational-unit-chooser/ │ │ ├── v1/ │ │ │ ├── README.md │ │ │ └── product.template.yaml │ │ ├── v2/ │ │ │ ├── README.md │ │ │ └── product.template.yaml │ │ ├── v3/ │ │ │ ├── README.md │ │ │ └── product.template.yaml │ │ └── v4/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── augmented-account-factory/ │ │ ├── v1/ │ │ │ ├── README.md │ │ │ └── product.template.yaml │ │ ├── v2/ │ │ │ ├── README.md │ │ │ └── product.template.yaml │ │ ├── v3/ │ │ │ ├── README.md │ │ │ └── product.template.yaml │ │ ├── v4/ │ │ │ ├── README.md │ │ │ └── product.template.yaml │ │ └── v5/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── manifest.yaml │ └── portfolio.yaml ├── aws-iam/ │ ├── README.md │ ├── assume-roles-spoke/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── groups-security-account/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── manifest.yaml │ └── portfolio.yaml ├── aws-iam-administrator-access/ │ ├── README.md │ ├── assumable-role-account/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── assumable-role-service/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── manifest.yaml │ └── portfolio.yaml ├── aws-servicecatalog-factory-provisioners/ │ ├── README.md │ ├── manifest.yaml │ ├── portfolio.yaml │ └── terraform/ │ └── v4/ │ ├── README.md │ └── product.template.yaml ├── cdk-support/ │ ├── bootstrap/ │ │ ├── v1/ │ │ │ └── product.template.yaml │ │ ├── v2/ │ │ │ └── product.template.yaml │ │ ├── v3/ │ │ │ └── product.template.yaml │ │ └── v4/ │ │ ├── product.template.yaml │ │ └── start_cdk_deploy/ │ │ ├── requirements.txt │ │ └── src/ │ │ └── handler.py │ ├── iam/ │ │ ├── v1/ │ │ │ └── product.template.yaml │ │ └── v2/ │ │ └── product.template.yaml │ ├── manifest.yaml │ └── portfolio.yaml ├── cloud-custodian/ │ ├── README.md │ ├── codestar-connection/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── event-forwarding/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── hub/ │ │ ├── v1/ │ │ │ └── product.template.yaml │ │ ├── v2/ │ │ │ ├── README.md │ │ │ └── product.template.yaml │ │ ├── v3/ │ │ │ ├── README.md │ │ │ └── product.template.yaml │ │ └── v4/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── manifest.yaml │ ├── pipeline/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── portfolio.yaml │ └── spoke/ │ ├── v1/ │ │ └── product.template.yaml │ └── v2/ │ ├── README.md │ └── product.template.yaml ├── delete-default-networking-custom-resource/ │ ├── delete-default-networking-custom-resource/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── manifest.yaml │ └── portfolio.yaml ├── governance-at-scale-account-factory/ │ ├── account-bootstrap-shared/ │ │ ├── v1/ │ │ │ ├── README.md │ │ │ ├── product.template.yaml │ │ │ ├── requirements.txt │ │ │ └── src/ │ │ │ └── handler.py │ │ └── v2/ │ │ ├── README.md │ │ ├── product.template.yaml │ │ ├── requirements.txt │ │ └── src/ │ │ └── handler.py │ ├── account-bootstrap-shared-org-bootstrap/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── account-create-update-notifier/ │ │ └── v1/ │ │ ├── README.md │ │ ├── product.template.yaml │ │ └── sample-message.json │ ├── account-creation-notifier-cfh-handler/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── account-creation-shared/ │ │ ├── v1/ │ │ │ ├── README.md │ │ │ ├── product.template.yaml │ │ │ ├── requirements.txt │ │ │ └── src/ │ │ │ └── handler.py │ │ ├── v2/ │ │ │ ├── README.md │ │ │ ├── product.template.yaml │ │ │ ├── requirements.txt │ │ │ └── src/ │ │ │ └── handler.py │ │ ├── v3/ │ │ │ ├── README.md │ │ │ ├── product.template.yaml │ │ │ ├── requirements.txt │ │ │ └── src/ │ │ │ └── handler.py │ │ └── v4/ │ │ ├── README.md │ │ ├── product.template.yaml │ │ ├── requirements.txt │ │ └── src/ │ │ └── handler.py │ ├── account-creation-shared-org-bootstrap/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── account-details/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── account-details-org-bootstrap/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── account-type-to-organizational-unit-chooser/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── account-waiter/ │ │ ├── v1/ │ │ │ ├── README.md │ │ │ ├── product.template.yaml │ │ │ ├── requirements.txt │ │ │ └── src/ │ │ │ └── handler.py │ │ ├── v2/ │ │ │ ├── README.md │ │ │ ├── product.template.yaml │ │ │ ├── requirements.txt │ │ │ └── src/ │ │ │ └── handler.py │ │ └── v3/ │ │ ├── README.md │ │ ├── product.template.yaml │ │ ├── requirements.txt │ │ └── src/ │ │ └── handler.py │ ├── aws-control-tower-account-factory/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── aws-service-catalog-account-creation/ │ │ ├── v1/ │ │ │ ├── README.md │ │ │ └── product.template.yaml │ │ └── v2/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── manifest.yaml │ ├── move-to-ou/ │ │ ├── v1/ │ │ │ ├── README.md │ │ │ ├── product.template.yaml │ │ │ ├── requirements.txt │ │ │ └── src/ │ │ │ └── handler.py │ │ └── v2/ │ │ ├── README.md │ │ ├── product.template.yaml │ │ ├── requirements.txt │ │ └── src/ │ │ └── handler.py │ └── portfolio.yaml ├── mulit-account-aws-cloudtrail/ │ ├── README.md │ ├── aws-cloudtrail-enable/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── manifest.yaml │ └── portfolio.yaml ├── multi-account-aws-guardduty/ │ ├── README.md │ ├── guardduty-master/ │ │ ├── v1/ │ │ │ └── product.template.yaml │ │ └── v2/ │ │ └── product.template.yaml │ ├── guardduty-org-bootstrap/ │ │ ├── v1/ │ │ │ ├── README.md │ │ │ └── product.template.yaml │ │ └── v2/ │ │ ├── README.md │ │ └── product.template.yaml │ ├── guardduty-spoke/ │ │ ├── v1/ │ │ │ ├── product.template.yaml │ │ │ └── src/ │ │ │ └── lambda_handler.py │ │ └── v2/ │ │ ├── product.template.yaml │ │ └── register/ │ │ ├── lambda_handler.py │ │ └── requirements.txt │ ├── manifest.yaml │ └── portfolio.yaml ├── multi-account-aws-securityhub/ │ ├── README.md │ ├── manifest.yaml │ ├── portfolio.yaml │ ├── securityhub-master/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ └── securityhub-spoke/ │ └── v1/ │ ├── README.md │ ├── product.template.yaml │ └── src/ │ └── register/ │ ├── cfnresponse.py │ ├── lambda_function.py │ └── requirements.txt ├── networking/ │ ├── README.md │ ├── manifest.yaml │ ├── portfolio.yaml │ ├── public-subnet/ │ │ └── v1/ │ │ ├── README.md │ │ └── product.template.yaml │ └── vpc/ │ └── v1/ │ ├── README.md │ └── product.template.yaml ├── s3-event-notifier/ │ ├── README.md │ ├── manifest.yaml │ ├── portfolio.yaml │ └── v1/ │ ├── product.template.yaml │ ├── requirements.txt │ └── src/ │ └── handler.py ├── service-catalog-tools-dashboard/ │ ├── README.md │ ├── get-metrics/ │ │ └── v2/ │ │ ├── README.md │ │ ├── product.template.yaml │ │ ├── requirements.txt │ │ └── src/ │ │ └── handler.py │ ├── manifest.yaml │ ├── portfolio.yaml │ ├── put-metrics/ │ │ └── v2/ │ │ ├── README.md │ │ ├── product.template.yaml │ │ ├── requirements.txt │ │ └── src/ │ │ └── handler.py │ └── static-web-app/ │ └── v4/ │ ├── README.md │ ├── angular.json │ ├── buildspec.yml │ ├── e2e/ │ │ ├── protractor.conf.js │ │ ├── src/ │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.e2e.json │ ├── package.json │ ├── product.template.yaml │ ├── src/ │ │ ├── app/ │ │ │ ├── _helpers/ │ │ │ │ ├── header.interceptor.ts │ │ │ │ └── index.ts │ │ │ ├── _models/ │ │ │ │ ├── index.ts │ │ │ │ ├── pipeline-info.ts │ │ │ │ ├── pipeline-list.ts │ │ │ │ ├── product-info.ts │ │ │ │ └── product-launch-list.ts │ │ │ ├── _services/ │ │ │ │ ├── index.ts │ │ │ │ ├── list-launch.service.ts │ │ │ │ └── pipeline-status.service.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── footer/ │ │ │ │ ├── footer.component.html │ │ │ │ ├── footer.component.scss │ │ │ │ ├── footer.component.spec.ts │ │ │ │ └── footer.component.ts │ │ │ ├── header/ │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.scss │ │ │ │ ├── header.component.spec.ts │ │ │ │ └── header.component.ts │ │ │ ├── list-launches/ │ │ │ │ ├── list-launches.component.html │ │ │ │ ├── list-launches.component.scss │ │ │ │ ├── list-launches.component.spec.ts │ │ │ │ └── list-launches.component.ts │ │ │ ├── show-pipelines/ │ │ │ │ ├── show-pipelines.component.html │ │ │ │ ├── show-pipelines.component.scss │ │ │ │ ├── show-pipelines.component.spec.ts │ │ │ │ └── show-pipelines.component.ts │ │ │ └── spinner/ │ │ │ ├── spinner.component.html │ │ │ ├── spinner.component.scss │ │ │ ├── spinner.component.spec.ts │ │ │ └── spinner.component.ts │ │ ├── assets/ │ │ │ ├── list-launches.json │ │ │ └── show-pipelines.json │ │ ├── browserslist │ │ ├── environments/ │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── error.html │ │ ├── index.html │ │ ├── karma.conf.js │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ ├── tsconfig.json │ └── tslint.json ├── service-control-policy/ │ ├── README.md │ ├── manifest.yaml │ ├── portfolio.yaml │ ├── scp-attach/ │ │ └── v1/ │ │ ├── README.md │ │ ├── product.template.yaml │ │ └── src/ │ │ └── attach_policy/ │ │ ├── cfnresponse.py │ │ ├── lambda_function.py │ │ └── requirements.txt │ └── scp-create/ │ └── v1/ │ ├── .gitignore │ ├── README.md │ ├── product.template.yaml │ └── src/ │ └── create_policy/ │ ├── cfnresponse.py │ ├── lambda_function.py │ └── requirements.txt └── ssm-backup-restore/ ├── README.md ├── manifest.yaml ├── portfolio.yaml ├── ssm-backup/ │ ├── README.md │ └── v1/ │ ├── product.template.yaml │ ├── requirements.txt │ └── src/ │ ├── createBucket.py │ └── handler.py └── ssm-restore/ ├── README.md └── v1/ ├── product.template.yaml ├── requirements.txt └── src/ └── restore.py